gcc 6 warns about this sort of thing. There were also some
stray ; here.
gtk_combo_box_check_appearance (combo_box);
- if (priv->popup_widget &&
- GTK_IS_MENU (priv->popup_widget))
-G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
- gtk_menu_set_title (GTK_MENU (priv->popup_widget),
- priv->tearoff_title);
-G_GNUC_END_IGNORE_DEPRECATIONS;
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+ if (priv->popup_widget && GTK_IS_MENU (priv->popup_widget))
+ gtk_menu_set_title (GTK_MENU (priv->popup_widget), priv->tearoff_title);
+G_GNUC_END_IGNORE_DEPRECATIONS
}
/**